home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 293_01 / readme < prev    next >
Text File  |  1989-08-23  |  2KB  |  71 lines

  1.  
  2.       Sample data files for 3-D medical imaging software.
  3.  
  4. /*************************************************************
  5.  
  6.       3-D Reconstruction of Medical Images
  7.  
  8.     Three Dimensional Reconstruction Of Medical
  9.     Images from Serial Slices - CT, MRI, Ultrasound
  10.  
  11.  
  12.    These programs process a set of slices images (scans) for one
  13.    patient. It outputs two sets of files containing nine predefined
  14.    views of bony surfaces. One set contains distance values and
  15.    the other gradient values.
  16.  
  17.    The distance values are used as 3-D spatial topographic surface
  18.    coordinate maps for geometrical analysis of the scanned object.
  19.  
  20.    The gradient values are used for rendering the surface maps on
  21.    CRT displays for subjective viewing where perception of small
  22.    surface details is important.
  23.  
  24.     Daniel Geist, B.S.
  25.     Michael W. Vannier, M.D.
  26.  
  27.     Mallinckrodt Institute of Radiology
  28.     Washington University School of Medicine
  29.     510 S. Kingshighway Blvd.
  30.     St. Louis, Mo. 63110
  31.  
  32.     These programs may be copied and used freely for non-commercial
  33.     purposes by developers with inclusion of this notice.
  34.  
  35.  
  36. ********************************************************************/
  37.  
  38.  
  39. The files DBO.out, DRL.out and DRE.out are 3-D surface
  40. images 256 x 256 (or slightly fewer lines) with 8 bits
  41. per pixel.  These are 3-D reconstruction images obtained
  42. from CT scans using the grad.c program supplied by the
  43. authors.
  44.  
  45. The data file, "CTBILD.001", is a sample CT scan slice
  46. from a Siemens Somatom 2 CT scanner.  It has a header 
  47. block of 512 bytes, followed by 256 image lines.  Each
  48. image line has 256 elements (pixels or voxels, if you
  49. prefer).  Each pixel consists of 16 bits or 2 bytes.  Of
  50. these, only the low order 11 bits contain gray scale
  51. data.  The high order 5 bits (or in the case of other
  52. CT scanners, the high order 4 bits) may be ignored.
  53.  
  54. If you are interested in other CT scan data sets in
  55. IBM PC/AT format, we may be able to help you.  This is
  56. true when there is some academic purpose for the request.
  57. Contact the authors, as listed below, for more information
  58. on 3-D reconstruction imaging for the PC (and other 
  59. platforms).  Keep us informed on your progress, as we
  60. are most pleased to hear from you and share our work in
  61. biomedical image processing....
  62.  
  63. Michael W. Vannier
  64. Mallinckrodt Institute of Radiology
  65. Washington University School of Medicine
  66. 510 S. Kingshighway Blvd.
  67. St. Louis, Mo. 63110
  68.  
  69. June 1989
  70.  
  71.